home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / lib / udev / rule_generator.functions < prev    next >
Encoding:
Text File  |  2010-12-12  |  2.8 KB  |  115 lines

  1. # functions used by the udev rule generator
  2.  
  3. # Copyright (C) 2006 Marco d'Itri <md@Linux.IT>
  4.  
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 2 of the License, or
  8. # (at your option) any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  
  18. PATH='/sbin:/bin'
  19. #
  20.  
  21. PATH='/sbin:/bin'
  22.  
  23. # Read a single line from file $1 in the $DEVPATH directory.
  24. # The function must not return an error even if the file does not exist.
  25. sysread() {
  26.     local file="$1"
  27.     [ -e "/sys$DEVPATH/$file" ] || return 0
  28.     local value
  29.     read value < "/sys$DEVPATH/$file" || return 0
  30.     echo "$value"
  31. }
  32.  
  33. sysreadlink() {
  34.     local file="$1"
  35.     [ -e "/sys$DEVPATH/$file" ] || return 0
  36.     readlink -f /sys$DEVPATH/$file 2> /dev/null || true
  37. }
  38.  
  39. # Return true if a directory is writeable.
  40. writeable() {
  41.     if ln -s test-link $1/.is-writeable 2> /dev/null; then
  42.         rm -f $1/.is-writeable
  43.         return 0
  44.     else
  45.         return 1
  46.     fi
  47. }
  48.  
  49. # Create a lock file for the current rules file.
  50. lock_rules_file() {
  51.     [ -e /dev/.udev/ ] || return 0
  52.  
  53.     RULES_LOCK="/dev/.udev/.lock-${RULES_FILE##*/}"
  54.  
  55.     retry=30
  56.     while ! mkdir $RULES_LOCK 2> /dev/null; do
  57.         if [ $retry -eq 0 ]; then
  58.              echo "Cannot lock $RULES_FILE!" >&2
  59.              exit 2
  60.         fi
  61.         sleep 1
  62.         retry=$(($retry - 1))
  63.     done
  64. }
  65.  
  66. unlock_rules_file() {
  67.     [ "$RULES_LOCK" ] || return 0
  68.     rmdir $RULES_LOCK || true
  69. }
  70.  
  71. # Choose the real rules file if it is writeable or a temporary file if not.
  72. # Both files should be checked later when looking for existing rules.
  73. choose_rules_file() {
  74.     local tmp_rules_file="/dev/.udev/tmp-rules--${RULES_FILE##*/}"
  75.     [ -e "$RULES_FILE" -o -e "$tmp_rules_file" ] || PRINT_HEADER=1
  76.  
  77.     if writeable ${RULES_FILE%/*}; then
  78.         RO_RULES_FILE='/dev/null'
  79.     else
  80.         RO_RULES_FILE=$RULES_FILE
  81.         RULES_FILE=$tmp_rules_file
  82.     fi
  83. }
  84.  
  85. # Return the name of the first free device.
  86. raw_find_next_available() {
  87.     local links="$1"
  88.  
  89.     local basename=${links%%[ 0-9]*}
  90.     local max=-1
  91.     for name in $links; do
  92.         local num=${name#$basename}
  93.         [ "$num" ] || num=0
  94.         [ $num -gt $max ] && max=$num
  95.     done
  96.  
  97.     local max=$(($max + 1))
  98.     # "name0" actually is just "name"
  99.     [ $max -eq 0 ] && return
  100.     echo "$max"
  101. }
  102.  
  103. # Find all rules matching a key (with action) and a pattern.
  104. find_all_rules() {
  105.     local key="$1"
  106.     local linkre="$2"
  107.     local match="$3"
  108.  
  109.     local search='.*[[:space:],]'"$key"'"('"$linkre"')".*'
  110.     echo $(sed -n -r -e 's/^#.*//' -e "${match}s/${search}/\1/p" \
  111.         $RO_RULES_FILE \
  112.         $([ -e $RULES_FILE ] && echo $RULES_FILE) \
  113.         2>/dev/null)
  114. }
  115.